summary refs log tree commit diff
path: root/app/posts/[slug]/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/[slug]/page.tsx')
-rw-r--r--app/posts/[slug]/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/[slug]/page.tsx b/app/posts/[slug]/page.tsx
index 2110a35..03df660 100644
--- a/app/posts/[slug]/page.tsx
+++ b/app/posts/[slug]/page.tsx
@@ -18,7 +18,7 @@ export default async function Post({ params: { slug } }) {
       <h1 className="pageTitle">
         {post.title}
       </h1>
-      <main className="mainColumn">
+      <main className="mainColumn card">
         <InfoBar authorName={post.author} publishedDate={post.date} />
         <Markdown>{post.body}</Markdown>
       </main>